home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Commodities / ClipTool / src / smakefile < prev   
Makefile  |  1996-09-26  |  615b  |  26 lines

  1. # ClipTool smakefile for SAS/C 6.50
  2.  
  3. #OPTIM = opt
  4. OPTIM =
  5. COPTS = gst=cliptool.gst nominc nostkchk strmer nover $(OPTIM)
  6. LOPTS = scode sdata stripdbg nover nocheckabort
  7. OBJ = main.o handleevents.o gui.o imagegads.o buffers.o
  8.  
  9. .c.o:
  10.     sc $*.c $(COPTS)
  11.  
  12. ClipTool: $(OBJ)
  13.     sc link $(OBJ) pname ClipTool $(LOPTS)
  14.  
  15. cliptool.gst: cliptool.h
  16.     sc noobjname makegst=cliptool.gst cliptool.h $(COPTS)
  17.  
  18. clean:
  19.     -delete force \#?.o cliptool.lnk cliptool.gst
  20.  
  21. main.o: main.c cliptool.gst
  22. handleevents.o: handleevents.c cliptool.gst
  23. gui.o: gui.c cliptool.gst
  24. imagegads.o: imagegads.c cliptool.gst
  25. buffers.o: buffers.c cliptool.gst
  26.